home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / zipmgr15.zip / SETUP.BAT < prev    next >
DOS Batch File  |  1993-01-26  |  902b  |  28 lines

  1. ECHO OFF
  2. CLS
  3. ECHO ZIPMGR V1 - Initial SETUP batch file.
  4. ECHO Provided by Marshall H. Goodman Software Ltd.
  5. ECHO '
  6. ECHO Batch File syntax: SETUP path
  7. ECHO '           where: 'path' is the drive where the \WINDOWS sub-directory
  8. ECHO '                  is located, the pathname for it.
  9. ECHO '              eg: E:\WINDOWS or C:\WIN31
  10. ECHO '
  11. ECHO This batch file will copy SETUPKIT.DLL and VBRUN100.DLL to your
  12. ECHO '%1' sub-directory.
  13. ECHO '
  14. IF "%1" == "" GOTO NODRIVE
  15. IF NOT EXIST %1\*.* GOTO PATHNO
  16. IF NOT EXIST %1\SETUPKIT.DLL COPY SETUPKIT.DLL %1
  17. IF NOT EXIST %1\VBRUN100.DLL COPY VBRUN100.DLL %1
  18. ERASE SETUPKIT.DLL
  19. ERASE VBRUN100.DLL
  20. ECHO Copying complete.  You can now enter Windows and run SETUP_ZM.EXE.
  21. GOTO FINAL
  22. :PATHNO
  23. ECHO The sub-directory %1 does not on this drive.  SETUP Cancelled.
  24. GOTO FINAL
  25. :NODRIVE
  26. ECHO You have not specified a path.  SETUP cancelled.
  27. :FINAL
  28.